Skip to main content
Version: Upcoming

TickerDefinitionExt

V8 Message Definiton

TickerDefinitionExt (external) records exist for all SpiderRock tickers including equity tickers (stocks and ETFs) as well as index tickers and synthetic tickers for future chains and option multihedge baskets.

METADATA

AttributeValue
Topic4335-product-definition
MLink TokenInternal
ProductSRLive
accessTypeSELECT
MLink EndpointMLink-Live

Table Definition

FieldTypeKeyDefault ValueComment
ticker_atenum - AssetTypePRI'None'
ticker_tsenum - TickerSrcPRI'None'
ticker_tkVARCHAR(12)PRI''
symbolTypeenum - SymbolType'None'
nameVARCHAR(72)''Symbol name
issuerNameVARCHAR(72)''Name of issuer
cntryOfIncorpVARCHAR(2)''ISO Issuer Country Code
parValueFLOAT0Security Parvalue
parValueCurrencyVARCHAR(3)''Security Parvalue currency
pointValueFLOAT0
pointCurrencyenum - Currency'None'
priceFormatenum - PriceFormat'None'PriceFormat ex NMSPenny NMSHalfPenny
minTickSizeFLOAT0
primaryExchenum - PrimaryExchange'None'
altIDBIGINT0Alt Security ID number
micVARCHAR(4)''ISO Market Identification Code
micSegVARCHAR(4)''ISO Market Indentification Segment Code
symbolVARCHAR(12)''stock symbol
issueClassVARCHAR(1)''issue class of stock symbol if no issue class field will be blank
securityIDINT0Security ID number from the source Vendor SR Feed
sicVARCHAR(4)''SIC Standard Industrial Classification code
cikVARCHAR(10)''Central Index Key US specific
gicsVARCHAR(8)''Global Industry Classification Standard
leiVARCHAR(20)''Legal Entity Identifier
naicsVARCHAR(6)''North American Industry Classification System
cfiVARCHAR(6)''ISO Classification of Financial Instruments
cicVARCHAR(4)''Complementay Identification Code
fisnVARCHAR(40)''Financial Instrument Short Name
isinVARCHAR(12)''ISIN code
bbgCompositeTickerVARCHAR(12)''Bloomberg Composite Ticker
bbgExchangeTickerVARCHAR(28)''Bloomberg Exchange Ticker
bbgCompositeGlobalIDVARCHAR(12)''Bloomberg Composite Global ID
bbgGlobalIDVARCHAR(12)''Bloomberg Global ID
bbgCurrencyVARCHAR(3)''Bloomberg Trading Currency
stkVolumeFLOAT0daily stock volume
futVolumeFLOAT0daily future volume
optVolumeFLOAT0daily option volume
exchStringVARCHAR(8)''exchanges listing any options on this underlying
hasOptionsenum - YesNo'None'Has Options flag
numOptionsINT0total number of listed options
roundlotINT0round lot
sharesOutstandingBIGINT0symbol shares outstanding represented in thousands actualsharesoutstanding sharesoutstanding 1000
otcPrimaryMarketenum - OTCPrimaryMarket'None'
otcTierenum - OTCTier'None'
otcReportingStatusVARCHAR(1)''
otcDisclosureStatusINT0
otcFlagsINT0
tkDefSourceenum - TkDefSource'None'Ticker definition source None Vendor OTC SR Exchange
statusFlagenum - TkStatusFlag'None'
timeMetricenum - TimeMetric'None'trading time metric 252 or 365 trading days or a weekly cycle type
tradingPeriodenum - TradingPeriod'None'
timestampDATETIME(6)'1900-01-01 00:00:00.000000'

PRIMARY KEY DEFINITION (Unique)

FieldSequence
ticker_tk1
ticker_at2
ticker_ts3

SELECT TABLE EXAMPLE QUERY

SELECT *
FROM `SRLive`.`MsgTickerDefinitionExt`
WHERE
/* Replace with a ENUM('None','EQT','IDX','BND','CUR','COM','FUT','SYN','WAR','FLX','MUT','SPD','MM','MF','COIN','TOKEN','ANY','RATE') */
`ticker_at` = 'None'
AND
/* Replace with a ENUM('None','SR','NMS','CME','ICE','CFE','CBOT','NYMEX','COMEX','RUT','CIDX','ARCA','NYSE','OTC','NSDQ','MFQS','MIAX','DJI','CUSIP','ISIN','BXE','SCE','ANY','CXE','DXE','NXAM','NXBR','NXLS','NXML','NXOS','NXP','EUREX','CEDX','ICEFEC','ICEFEF','CEQT','TSX','TMX') */
`ticker_ts` = 'None'
AND
/* Replace with a VARCHAR(12) */
`ticker_tk` = 'Example_ticker_tk';

Doc Columns Query

SELECT * FROM SRLive.doccolumns WHERE TABLE_NAME='TickerDefinitionExt' ORDER BY ordinal_position ASC;